home *** CD-ROM | disk | FTP | other *** search
/ Workbench Add-On / Workbench Add-On - Volume 1.iso / BBS-Archive / Dev / GNU-SMALLTALK.lha / examples / Host.st < prev    next >
Text File  |  1992-02-15  |  1KB  |  40 lines

  1. "======================================================================
  2. |
  3. | Copyright (C) 1990, 1991, 1992 Free Software Foundation, Inc.
  4. | Written by Steve Byrne.
  5. |
  6. | This file is part of GNU Smalltalk.
  7. |
  8. | GNU Smalltalk is free software; you can redistribute it and/or modify it
  9. | under the terms of the GNU General Public License as published by the Free
  10. | Software Foundation; either version 1, or (at your option) any later version.
  11. | GNU Smalltalk is distributed in the hope that it will be useful, but WITHOUT
  12. | ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  13. | FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
  14. | details.
  15. | You should have received a copy of the GNU General Public License along with
  16. | GNU Smalltalk; see the file LICENSE.  If not, write to the Free Software
  17. | Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  
  18. |
  19.  ======================================================================"
  20.  
  21.  
  22.  
  23. Object variableByteSubclass: #Host
  24.        instanceVariableNames: ''
  25.        classVariableNames: ''
  26.        poolDictionaries: ''
  27.        category: nil!
  28.  
  29. Host comment: 
  30. 'I provide a mechanism to talk about Internet hosts.  My instances can be
  31. created by either the host name or the dotted, 4 octet address notation.
  32. I should be able to provide some form of connection to the named
  33. remote host, but that isn''t implemented at this time.' !
  34.  
  35. Host inspect!
  36.  
  37. "### NOT IMPLEMENTED YET###"
  38.